home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
pulseaudio.preinst
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-07-14
|
352 b
|
22 lines
#!/bin/sh
case "$1" in
install|upgrade)
if dpkg --compare-versions "$2" lt "0.9.14-0ubuntu3"; then
if [ -f /etc/xdg/autostart/pulseaudio.desktop ]; then
rm /etc/xdg/autostart/pulseaudio.desktop
fi
fi
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0